home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 5 / Gekikoh Dennoh Club Vol. 5 (Japan).7z / Gekikoh Dennoh Club Vol. 5 (Japan) (Track 01).bin / internet / webx / jpged26s.lzh / makefile < prev    next >
Makefile  |  1996-10-12  |  1KB  |  41 lines

  1.  
  2. CC      = lc
  3. AS      = as -z -m68000
  4. ASFLAGS = 
  5. LD      = link
  6. HDRS    = mnp.h prot.h
  7.  
  8. .SUFFIXES:   .s
  9.  
  10. .s.o:
  11.     ${AS} ${ASFLAGS} $< -plst\\$<
  12.  
  13. all: jpeged.r 
  14.  
  15. jpeged.r: jpeg.o save.o putblock.o encode.o load.o disp.o gethead.o getblock.o \
  16.           decode.o dct.o idct.o idct_y.o yuv.o vtoyuv.o  \
  17.           scroll.o mk_mul_tbl.o Huffman.o mes.o error.o \
  18.           jpeged.lnk
  19.     hlk  -i jpeged.lnk
  20.     cv jpeged.x
  21.  
  22. jpeg.o        : jpeg.s    jpeg.mac    work.inc    makefile
  23. save.o      : save.s    jpeg.mac    work.inc    makefile
  24. putblock.o    : putblock.s    jpeg.mac    work.inc    makefile
  25. encode.o    : encode.s    jpeg.mac    work.inc    makefile
  26. load.o        : load.s    jpeg.mac    work.inc    makefile    keycode.inc
  27. disp.o        : disp.s    jpeg.mac    work.inc    makefile
  28. scroll.o    : scroll.s    jpeg.mac    work.inc    makefile    keycode.inc
  29. gethead.o    : gethead.s    jpeg.mac    work.inc    makefile
  30. getblock.o    : getblock.s    jpeg.mac    work.inc    makefile
  31. decode.o    : decode.s    jpeg.mac    work.inc    makefile
  32. Huffman.o    : Huffman.s    jpeg.mac    work.inc    makefile
  33. vtoyuv.o    : vtoyuv.s            work.inc    makefile
  34. dct.o        : dct.s                work.inc    makefile
  35. idct.o        : idct.s            work.inc    makefile
  36. idct_y.o    : idct_y.s            work.inc    makefile
  37. yuv.o        : yuv.s    jpeg.mac        work.inc    makefile
  38. mk_mul_tbl.o    : mk_mul_tbl.s    jpeg.mac    work.inc    makefile
  39. mes.o        : mes.s
  40. error.o        : error.s
  41.